home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm3_3_4
- Caption = "3-3-4"
- ClientHeight = 1590
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 1800
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1590
- ScaleWidth = 1800
- Begin VB.PictureBox picResults
- Height = 615
- Left = 120
- ScaleHeight = 555
- ScaleWidth = 1515
- TabIndex = 1
- Top = 120
- Width = 1575
- End
- Begin VB.CommandButton cmdDisplay
- Caption = "Display Numbers"
- Height = 615
- Left = 240
- TabIndex = 0
- Top = 840
- Width = 1335
- End
- Attribute VB_Name = "frm3_3_4"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDisplay_Click()
- picResults.Cls
- picResults.Print 3;
- picResults.Print -3;
- picResults.Print 99;
- picResults.Print 100
- End Sub
-